home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinNT Old Startup.xpl < prev    next >
Text File  |  2001-04-13  |  2KB  |  68 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH 1"="Startup/Shutdown\Startup\Windows 9x/ME\40) Pre-Windows"
  5. "UIPATH 2"="Startup/Shutdown\Startup\Windows NT/2K/XP\40) 16bit Programs"
  6. "NAME"="16bit Programs startup"
  7. "VERSION"="1.34"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="LOAD command"
  10. "TEXT 2"="RUN command"
  11. "TEXT 3"="win.ini LOAD"
  12. "TEXT 4"="win.ini RUN"
  13. "DESCRIPTION 1"="In Windows 3.x (Win 16bit) the only way to start a program automatically when Windows loads were the commands "RUN" and "LOAD" in WIN.INI. "
  14. "DESCRIPTION 2"="Although Windows now supports many other options to do the same, RUN and LOAD are still supported and some programs keep on using it."
  15. "DESCRIPTION 3"="To make the confusion complete, Windows supports these commands in BOTH registry and win.ini."
  16. "DESCRIPTION 4"="Note #1: Use only short file names (8+3), no spaces!"
  17. "DESCRIPTION 5"="Note #2: To execute two or more commands, separate the commands using a single space. The commands must be in the current PATH specified in your AUTOEXEC.BAT file."
  18. "AUTHOR"="Xteq Systems"
  19. "CONTACTURL"="http://www.xteq.com"
  20. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  21. "COMMENT 1"=" "
  22.  
  23.  
  24. sPath="HKCU\Software\Microsoft\Windows NT\CurrentVersion\Windows\"
  25. sV1="LOAD"
  26. sV2="RUN"
  27.  
  28. sFile="WIN.INI"
  29. sFileSec="WINDOWS"
  30.  
  31. Sub Plugin_Initialize 
  32.  s=RegReadValue(sPath&sV1)
  33.  if len(s)=0 then s=INIReadValue(sFile,sFileSec,sV1)
  34.  Call SetUIElement(1,s)
  35.  
  36.  s=RegReadValue(sPath&sV2)
  37.  if len(s)=0 then s=INIReadValue(sFile,sFileSec,sV2)
  38.  Call SetUIElement(2,s)
  39. End Sub
  40.  
  41. Sub Plugin_CheckData(ElementIndex)
  42. End Sub
  43.  
  44. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  45.  s=GetUIElement(1)
  46.  Call RegWriteValue(sPath&sV1,s,1)
  47.  
  48.  s=GetUIElement(2)
  49.  Call RegWriteValue(sPath&sV2,s,1)
  50.  
  51.  
  52.  'Seems like unnecessary, but these commands ensure that the registry- and
  53.  'INI commands match...
  54.  
  55.  s=GetUIElement(1)
  56.  Call INIWriteValue(sFile,sFileSec,sV1,s)
  57.  
  58.  s=GetUIElement(2)
  59.  Call INIWriteValue(sFile,sFileSec,sV2,s)
  60.  
  61.  
  62.  
  63.  Call Restart
  64. End Sub
  65.  
  66. Sub Plugin_Terminate 
  67. End Sub
  68.